home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 001036_sanders@bsdi.com _Thu May 6 02:45:07 1993.msg < prev    next >
Internet Message Format  |  1994-01-24  |  3KB

  1. Return-Path: <sanders@bsdi.com>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA19748; Thu, 6 May 93 02:45:07 MET DST
  4. Errors-To: sanders@bsdi.com
  5. Received: from austin.BSDI.COM by dxmint.cern.ch (5.65/DEC-Ultrix/4.3)
  6.     id AA22484; Thu, 6 May 1993 03:05:47 +0200
  7. Received: from localhost by austin.BSDI.COM (5.67/1.37)
  8.     id AA01715; Wed, 5 May 93 20:05:45 -0500
  9. Message-Id: <9305060105.AA01715@austin.BSDI.COM>
  10. To: www-talk@nxoc01.cern.ch
  11. Subject: More about DOCid's and HTTP2
  12. In-Reply-To: Your message of Thu, 06 May 93 01:52:24 +0200.
  13. Errors-To: sanders@bsdi.com
  14. Reply-To: sanders@bsdi.com
  15. Organization: Berkeley Software Design, Inc.
  16. Date: Wed, 05 May 1993 20:05:45 -0500
  17. From: Tony Sanders <sanders@bsdi.com>
  18.  
  19. I got this out-of-band:
  20. > Thanks for pointing out "DOCid's" and "HTTP2".  Are there any
  21. > documents about this in the web?  Do you have the full link names?  Is
  22. > the topic discussed anywhere else than www-talk?  Other www-talk
  23. > readers would probably be interested in the answers.
  24.  
  25. http://info.cern.ch:80/hypertext/WWW/Protocols/HTTP/HTTP2.html
  26. http://info.cern.ch/hypertext/WWW/DesignIssues/FunctionTraverse.html
  27.  
  28. these talk about UDI's a little:
  29. http://info.cern.ch/hypertext/WWW/DesignIssues/DosDonts.html 
  30. http://info.cern.ch/hypertext/WWW/Administration/DataModel.html
  31.  
  32. I couldn't find much that talks about DOCid's directly (there isn't much
  33. because they don't exist yet :-).  Anyone know where some docs are that
  34. talk about this?  I've seen them but couldn't find them right now.
  35.  
  36. I thought about writing a perl script that retrieves and greps http
  37. documents from ~/.mosaic-global-history but then I realized there are over
  38. 1200 in my history file, whew.
  39.  
  40. <INFORMATION>
  41. Here are my top 5 servers (out of 101):
  42.   68 www.bsdi.com        (my server)
  43.   81 hoohoo.ncsa.uiuc.edu    (xmosaic)
  44.   85 cs.indiana.edu        (where my server code came from)
  45.   95 www.ncsa.uiuc.edu        (xmosaic)
  46.  236 info.cern.ch        (WWW HQ)
  47.  
  48. as computed by:
  49. ------- cut: server-hist --------
  50. #!/usr/bin/perl -n
  51. next unless /^file:/ || /^ftp:/ || /^gopher:/ || /^http:/ || /^telnet:/;
  52. next if /\?/;        # queries don't count
  53. s,^[^/]*//,,; s,[:/].*,,; s,\.$,,; y/A-Z/a-z/; print;
  54. ----------------------------
  55. server-hist ~/.mosaic-global-history | sort | uniq -c | sort -n | tail -5
  56. </INFORMATION>
  57.  
  58. <PROJECT IDEA>
  59. Someone should make a server where you can mail your .mosaic-global-history
  60. file and it will munge it into some stats that we can view on the Web.
  61. </PROJECT>
  62.  
  63. --sanders@bsdi.com